home *** CD-ROM | disk | FTP | other *** search
/ Mission 3 / Mission 3.zip / Mission 3.iso / texte / 7up_pd / setjmp.h < prev    next >
Text File  |  1998-10-29  |  489b  |  26 lines

  1. /*      SETJMP.H
  2.  
  3.         Context Switch Definition Includes
  4.  
  5.         Copyright (c) Borland International 1990
  6.         All Rights Reserved.
  7. */
  8.  
  9.  
  10. #if !defined( __SETJMP )
  11. #define __SETJMP
  12.  
  13. #ifdef    __68881__
  14. typedef char  jmp_buf[12*4 + 5*12];
  15. #else
  16. typedef char  jmp_buf[12*4];
  17. #endif
  18.  
  19. void    longjmp( jmp_buf jmp_buffer, int return_value );
  20. int     setjmp( jmp_buf jmp_buffer );
  21.  
  22.  
  23. #endif
  24.  
  25. /************************************************************************/
  26.